.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.banner .banner-image,
.banner .banner-text {
  flex: 1 1 50%;
  padding: 20px;
}

.banner .banner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.banner .banner-text {
  font-family: Arial, sans-serif;
  color: #131313;
}

.banner .banner-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.banner .banner-text h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #131313;
}

.banner .banner-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #131313;
}

@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    text-align: center;
  }
}